home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / rexx / rexxmode10.lha / rexx-mode.el < prev    next >
Lisp/Scheme  |  1993-03-20  |  22KB  |  583 lines

  1. ;;;
  2. ;;; FILE
  3. ;;;    rexx-mode.el    V1.0
  4. ;;;
  5. ;;;    Copyright (C) 1993 by Anders Lindgren.
  6. ;;;
  7. ;;;    This file is NOT part of GNU Emacs (yet).
  8. ;;;
  9. ;;;
  10. ;;; DISTRIBUTION
  11. ;;;    REXX-mode is free software; you can redistribute it and/or modify
  12. ;;;    it under the terms of the GNU General Public License as published 
  13. ;;;    by the Free Software Foundation; either version 1, or (at your 
  14. ;;;    option) any later version.
  15. ;;;
  16. ;;;    GNU Emacs is distributed in the hope that it will be useful,
  17. ;;;    but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;;;    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ;;;    GNU General Public License for more details.
  20. ;;;
  21. ;;;    You should have received a copy of the GNU General Public
  22. ;;;    License along with GNU Emacs; see the file COPYING.  If not,
  23. ;;;    write to the Free Software Foundation, 675 Mass Ave, Cambridge,
  24. ;;;    MA 02139, USA.
  25. ;;;
  26. ;;;
  27. ;;; AUTHOR
  28. ;;;    Anders Lindgren, d91ali@csd.uu.se
  29. ;;;
  30. ;;;         Abbrevationtable due to:
  31. ;;;    Johan Bergkvist, nv91-jbe@nada.kth.se
  32. ;;;
  33. ;;; USAGE
  34. ;;;    This file contains code for a GNU Emacs major mode for
  35. ;;;    editing REXX program files.
  36. ;;;
  37. ;;;     Type C-h m in Emacs for information on how to configurate
  38. ;;;    the rexx-mode, or see rexx-mode.doc.
  39. ;;;
  40. ;;;    Put the following lines into your .emacs and rexx-mode
  41. ;;;    will be automatically loaded when editing a REXX program.
  42. ;;;    If rexx-mode shall be used for files with other extensions
  43. ;;;    you can create more (cons ...) lines with these extensions.
  44. ;;;
  45. ;;;    (autoload 'rexx-mode "rexx-mode" "REXX mode" nil t)
  46. ;;;    (setq auto-mode-alist
  47. ;;;          (append
  48. ;;;           (list (cons "\\.rexx$"  'rexx-mode)
  49. ;;;             (cons "\\.elx$"   'rexx-mode)
  50. ;;;             (cons "\\.ncomm$" 'rexx-mode)
  51. ;;;             (cons "\\.cpr$"   'rexx-mode)
  52. ;;;                    )
  53. ;;;           auto-mode-alist))
  54. ;;;
  55. ;;; HISTORY
  56. ;;;    93-01-07 V0.1 ALi    Works for the first time.
  57. ;;;    92-01-11 V0.2 ALi    rexx-calc-indent totally rewritten.
  58. ;;;     93-03-08 V0.3 JB        rexx-indent-and-newline-and-indent added.
  59. ;;;                             Abbrev-table containing 173 entries created.
  60. ;;;                             rexx-check-expansion added.
  61. ;;;                             rexx-mode enables use of abbrev-table.
  62. ;;;    93-03-15 V0.4 ALi    abbrev-mode removed, better to call
  63. ;;;                 (abbrev-mode 1) from the hook.
  64. ;;;                case-fold-search set to t to recognize capital
  65. ;;;                 letters in keywords.
  66. ;;;                Old (setq case-fold-search nil) removed which
  67. ;;;                 prevented the recognition of END.
  68. ;;;                rexx-indent-and-newline-and-indent renamed to
  69. ;;;                 rexx-indent-newline-indent.
  70. ;;;                rexx-i-n-i now only expands abbrevs when
  71. ;;;                 buffer is in abbrev-mode.
  72. ;;;                New rexx-newline-and-indent added.
  73. ;;;    93-03-20      ALi     A serious bug in the routine for checking
  74. ;;;                strings and comments found and fixed.
  75. ;;;               V1.0 Relesed!    
  76. ;;;
  77.  
  78.  
  79. (provide 'rexx-mode)
  80. (autoload 'rexx-debug "rexx-debug" "REXX source level debugger" t)
  81.  
  82. (defconst rexx-indent 8
  83.   "*This variable contains the indentation in rexx-mode.")
  84.  
  85. (defconst rexx-end-indent 0
  86.   "*This variable indicates the relative position of the \"end\" in REXX mode.")
  87.  
  88. (defconst rexx-cont-indent 8
  89.   "*This variable indicates how far a continued line shall be intended.")
  90.  
  91. (defconst rexx-comment-col 32
  92.   "*This variable gives the desired comment column 
  93. for comments to the right of text.")
  94.  
  95. (defconst rexx-tab-always-indent t
  96.   "*Non-nil means TAB in REXX mode should always reindent the current line,
  97. regardless of where in the line point is when the TAB command is used.")
  98.  
  99. (defconst rexx-special-regexp 
  100.   ".*\\(,\\|then\\|else\\)[ \t]*\\(/\\*.*\\*/\\)?[ \t]*$"
  101.   "*Regular expression for parsing lines which shall be followed by
  102. a extra indention")
  103.  
  104. (defvar rexx-mode-map nil
  105.   "Keymap for rexx-mode.")
  106. (if rexx-mode-map
  107.     nil
  108.   (setq rexx-mode-map (make-sparse-keymap))
  109.   (define-key rexx-mode-map "\t"   'rexx-indent-command)
  110.   (define-key rexx-mode-map "\177" 'backward-delete-char-untabify)
  111.   (define-key rexx-mode-map "\C-c\C-p" 'rexx-find-matching-do)
  112.   (define-key rexx-mode-map "\C-c\C-c" 'rexx-debug)
  113.   )
  114.  
  115. (defvar rexx-mode-syntax-table nil
  116.   "Syntax table in use in REXX-mode buffers.")
  117.  
  118. (if rexx-mode-syntax-table
  119.     ()
  120.   (setq rexx-mode-syntax-table (make-syntax-table))
  121.   (modify-syntax-entry ?\\ "\\" rexx-mode-syntax-table)
  122.   (modify-syntax-entry ?/ ". 14" rexx-mode-syntax-table)
  123.   (modify-syntax-entry ?* ". 23" rexx-mode-syntax-table)
  124.   (modify-syntax-entry ?+ "." rexx-mode-syntax-table)
  125.   (modify-syntax-entry ?- "." rexx-mode-syntax-table)
  126.   (modify-syntax-entry ?= "." rexx-mode-syntax-table)
  127.   (modify-syntax-entry ?% "." rexx-mode-syntax-table)
  128.   (modify-syntax-entry ?< "." rexx-mode-syntax-table)
  129.   (modify-syntax-entry ?> "." rexx-mode-syntax-table)
  130.   (modify-syntax-entry ?& "." rexx-mode-syntax-table)
  131.   (modify-syntax-entry ?| "." rexx-mode-syntax-table)
  132.   (modify-syntax-entry ?\' "\"" rexx-mode-syntax-table))
  133.  
  134. (defvar rexx-mode-abbrev-table nil
  135.   "*Abbrev table in use in rexx-mode buffers.")
  136.  
  137. (if rexx-mode-abbrev-table
  138.     nil
  139.   (define-abbrev-table 'rexx-mode-abbrev-table '(
  140.      ("address" "ADDRESS" rexx-check-expansion 0)
  141.      ("arg" "ARG" rexx-check-expansion 0)
  142.      ("break" "BREAK" rexx-check-expansion 0)
  143.      ("call" "CALL" rexx-check-expansion 0)
  144.      ("do" "DO" rexx-check-expansion 0)
  145.      ("drop" "DROP" rexx-check-expansion 0)
  146.      ("echo" "ECHO" rexx-check-expansion 0)
  147.      ("else" "ELSE" rexx-check-expansion 0)
  148.      ("end" "END" rexx-check-expansion 0)
  149.      ("exit" "EXIT" rexx-check-expansion 0)
  150.      ("if" "IF" rexx-check-expansion 0)
  151.      ("interpret" "INTERPRET" rexx-check-expansion 0)
  152.      ("iterate" "ITERATE" rexx-check-expansion 0)
  153.      ("leave" "LEAVE" rexx-check-expansion 0)
  154.      ("nop" "NOP" rexx-check-expansion 0)
  155.      ("numeric" "NUMERIC" rexx-check-expansion 0)
  156.      ("options" "OPTIONS" rexx-check-expansion 0)
  157.      ("otherwise" "OTHERWISE" rexx-check-expansion 0)
  158.      ("parse" "PARSE" rexx-check-expansion 0)
  159.      ("procedure" "PROCEDURE" rexx-check-expansion 0)
  160.      ("pull" "PULL" rexx-check-expansion 0)
  161.      ("push" "PUSH" rexx-check-expansion 0)
  162.      ("queue" "QUEUE" rexx-check-expansion 0)
  163.      ("return" "RETURN" rexx-check-expansion 0)
  164.      ("say" "SAY" rexx-check-expansion 0)
  165.      ("select" "SELECT" rexx-check-expansion 0)
  166.      ("shell" "SHELL" rexx-check-expansion 0)
  167.      ("signal" "SIGNAL" rexx-check-expansion 0)
  168.      ("then" "THEN" rexx-check-expansion 0)
  169.      ("trace" "TRACE" rexx-check-expansion 0)
  170.      ("upper" "UPPER" rexx-check-expansion 0)
  171.      ("when" "WHEN" rexx-check-expansion 0)
  172.      ("value" "VALUE" rexx-check-expansion 0)
  173.      ("to" "TO" rexx-check-expansion 0)
  174.      ("by" "BY" rexx-check-expansion 0)
  175.      ("for" "FOR" rexx-check-expansion 0)
  176.      ("forever" "FOREVER" rexx-check-expansion 0)
  177.      ("while" "WHILE" rexx-check-expansion 0)
  178.      ("until" "UNTIL" rexx-check-expansion 0)
  179.      ("form" "FORM" rexx-check-expansion 0)
  180.      ("digits" "DIGITS" rexx-check-expansion 0)
  181.      ("fuzz" "FUZZ" rexx-check-expansion 0)
  182.      ("scientific" "SCIENTIFIC" rexx-check-expansion 0)
  183.      ("engineering" "ENGINEERING" rexx-check-expansion 0)
  184.      ("failat" "FAILAT" rexx-check-expansion 0)
  185.      ("prompt" "PROMPT" rexx-check-expansion 0)
  186.      ("results" "RESULTS" rexx-check-expansion 0)
  187.      ("upper" "UPPER" rexx-check-expansion 0)
  188.      ("external" "EXTERNAL" rexx-check-expansion 0)
  189.      ("source" "SOURCE" rexx-check-expansion 0)
  190.      ("with" "WITH" rexx-check-expansion 0)
  191.      ("command" "COMMAND" rexx-check-expansion 0)
  192.      ("function" "FUNCTION" rexx-check-expansion 0)
  193.      ("var" "VAR" rexx-check-expansion 0)
  194.      ("version" "VERSION" rexx-check-expansion 0)
  195.      ("expose" "EXPOSE" rexx-check-expansion 0)
  196.      ("on" "ON" rexx-check-expansion 0)
  197.      ("off" "OFF" rexx-check-expansion 0)
  198.      ("abbrev" "ABBREV" rexx-check-expansion 0)
  199.      ("abs" "ABS" rexx-check-expansion 0)
  200.      ("addlib" "ADDLIB" rexx-check-expansion 0)
  201.      ("b2c" "B2C" rexx-check-expansion 0)
  202.      ("bitand" "BITAND" rexx-check-expansion 0)
  203.      ("bitchg" "BITCHG" rexx-check-expansion 0)
  204.      ("bitclr" "BITCLR" rexx-check-expansion 0)
  205.      ("bitcomp" "BITCOMP" rexx-check-expansion 0)
  206.      ("bitor" "BITOR" rexx-check-expansion 0)
  207.      ("bittst" "BITTST" rexx-check-expansion 0)
  208.      ("bitset" "BITSET" rexx-check-expansion 0)
  209.      ("c2b" "C2B" rexx-check-expansion 0)
  210.      ("c2d" "C2D" rexx-check-expansion 0)
  211.      ("c2x" "C2X" rexx-check-expansion 0)
  212.      ("center" "CENTER" rexx-check-expansion 0)
  213.      ("centre" "CENTRE" rexx-check-expansion 0)
  214.      ("close" "CLOSE" rexx-check-expansion 0)
  215.      ("compress" "COMPRESS" rexx-check-expansion 0)
  216.      ("compare" "COMPARE" rexx-check-expansion 0)
  217.      ("copies" "COPIES" rexx-check-expansion 0)
  218.      ("d2c" "D2C" rexx-check-expansion 0)
  219.      ("datatype" "DATATYPE" rexx-check-expansion 0)
  220.      ("delstr" "DELSTR" rexx-check-expansion 0)
  221.      ("delword" "DELWORD" rexx-check-expansion 0)
  222.      ("eof" "EOF" rexx-check-expansion 0)
  223.      ("errortext" "ERRORTEXT" rexx-check-expansion 0)
  224.      ("exists" "EXISTS" rexx-check-expansion 0)
  225.      ("export" "EXPORT" rexx-check-expansion 0)
  226.      ("freespace" "FREESPACE" rexx-check-expansion 0)
  227.      ("getclip" "GETCLIP" rexx-check-expansion 0)
  228.      ("getspace" "GETSPACE" rexx-check-expansion 0)
  229.      ("hash" "HASH" rexx-check-expansion 0)
  230.      ("import" "IMPORT" rexx-check-expansion 0)
  231.      ("index" "INDEX" rexx-check-expansion 0)
  232.      ("insert" "INSERT" rexx-check-expansion 0)
  233.      ("lastpos" "LASTPOS" rexx-check-expansion 0)
  234.      ("left" "LEFT" rexx-check-expansion 0)
  235.      ("length" "LENGTH" rexx-check-expansion 0)
  236.      ("max" "MAX" rexx-check-expansion 0)
  237.      ("min" "MIN" rexx-check-expansion 0)
  238.      ("open" "OPEN" rexx-check-expansion 0)
  239.      ("overlay" "OVERLAY" rexx-check-expansion 0)
  240.      ("pos" "POS" rexx-check-expansion 0)
  241.      ("pragma" "PRAGMA" rexx-check-expansion 0)
  242.      ("random" "RANDOM" rexx-check-expansion 0)
  243.      ("randu" "RANDU" rexx-check-expansion 0)
  244.      ("readch" "READCH" rexx-check-expansion 0)
  245.      ("readln" "READLN" rexx-check-expansion 0)
  246.      ("remlib" "REMLIB" rexx-check-expansion 0)
  247.      ("reverse" "REVERSE" rexx-check-expansion 0)
  248.      ("right" "RIGHT" rexx-check-expansion 0)
  249.      ("seek" "SEEK" rexx-check-expansion 0)
  250.      ("setclip" "SETCLIP" rexx-check-expansion 0)
  251.      ("show" "SHOW" rexx-check-expansion 0)
  252.      ("sign" "SIGN" rexx-check-expansion 0)
  253.      ("space" "SPACE" rexx-check-expansion 0)
  254.      ("storage" "STORAGE" rexx-check-expansion 0)
  255.      ("strip" "STRIP" rexx-check-expansion 0)
  256.      ("substr" "SUBSTR" rexx-check-expansion 0)
  257.      ("subword" "SUBWORD" rexx-check-expansion 0)
  258.      ("symbol" "SYMBOL" rexx-check-expansion 0)
  259.      ("time" "TIME" rexx-check-expansion 0)
  260.      ("trace" "TRACE" rexx-check-expansion 0)
  261.      ("translate" "TRANSLATE" rexx-check-expansion 0)
  262.      ("trim" "TRIM" rexx-check-expansion 0)
  263.      ("verify" "VERIFY" rexx-check-expansion 0)
  264.      ("word" "WORD" rexx-check-expansion 0)
  265.      ("wordindex" "WORDINDEX" rexx-check-expansion 0)
  266.      ("wordlength" "WORDLENGTH" rexx-check-expansion 0)
  267.      ("words" "WORDS" rexx-check-expansion 0)
  268.      ("writech" "WRITECH" rexx-check-expansion 0)
  269.      ("writeln" "WRITELN" rexx-check-expansion 0)
  270.      ("x2c" "X2C" rexx-check-expansion 0)
  271.      ("xrange" "XRANGE" rexx-check-expansion 0)
  272.      ("allocmem" "ALLOCMEM" rexx-check-expansion 0)
  273.      ("baddr" "BADDR" rexx-check-expansion 0)
  274.      ("bitxor" "BITXOR" rexx-check-expansion 0)
  275.      ("break_c" "BREAK_C" rexx-check-expansion 0)
  276.      ("break_d" "BREAK_D" rexx-check-expansion 0)
  277.      ("break_e" "BREAK_E" rexx-check-expansion 0)
  278.      ("break_f" "BREAK_F" rexx-check-expansion 0)
  279.      ("cache" "CACHE" rexx-check-expansion 0)
  280.      ("closeport" "CLOSEPORT" rexx-check-expansion 0)
  281.      ("d2x" "D2X" rexx-check-expansion 0)
  282.      ("date" "DATA" rexx-check-expansion 0)
  283.      ("delay" "DELAY" rexx-check-expansion 0)
  284.      ("delete" "DELETE" rexx-check-expansion 0)
  285.      ("error" "ERROR" rexx-check-expansion 0)
  286.      ("failure" "FAILURE" rexx-check-expansion 0)
  287.      ("find" "FIND" rexx-check-expansion 0)
  288.      ("forbid" "FORBID" rexx-check-expansion 0)
  289.      ("freemem" "FREEMEM" rexx-check-expansion 0)
  290.      ("getarg" "GETARG" rexx-check-expansion 0)
  291.      ("getpkt" "GETPKT" rexx-check-expansion 0)
  292.      ("halt" "HALT" rexx-check-expansion 0)
  293.      ("ioerr" "IOERR" rexx-check-expansion 0)
  294.      ("lines" "LINES" rexx-check-expansion 0)
  295.      ("makedir" "MAKEDIR" rexx-check-expansion 0)
  296.      ("next" "NEXT" rexx-check-expansion 0)
  297.      ("novalue" "NOVALUE" rexx-check-expansion 0)
  298.      ("null" "NULL" rexx-check-expansion 0)
  299.      ("offset" "OFFSET" rexx-check-expansion 0)
  300.      ("openport" "OPENPORT" rexx-check-expansion 0)
  301.      ("permit" "PERMIT" rexx-check-expansion 0)
  302.      ("rename" "RENAME" rexx-check-expansion 0)
  303.      ("reply" "REPLY" rexx-check-expansion 0)
  304.      ("showdir" "SHOWDIR" rexx-check-expansion 0)
  305.      ("showlist" "SHOWLIST" rexx-check-expansion 0)
  306.      ("sourceline" "SOURCELINE" rexx-check-expansion 0)
  307.      ("statef" "STATEF" rexx-check-expansion 0)
  308.      ("syntax" "SYNTAX" rexx-check-expansion 0)
  309.      ("trunc" "TRUNC" rexx-check-expansion 0)
  310.      ("typepkt" "TYPEPKT" rexx-check-expansion 0)
  311.      ("waitpkt" "WAITPKT" rexx-check-expansion 0)
  312.      ("x2d" "X2D" rexx-check-expansion 0))))
  313.  
  314. (defun rexx-mode ()
  315. "Major mode for editing REXX code.
  316. \\{rexx-mode-map}
  317.  
  318. Variables controlling indentation style:
  319.  rexx-indent
  320.     The basic indentation for do-blocks.
  321.  rexx-end-indent
  322.     The relative offset of the \"end\" statement. 0 places it in the
  323.     same column as the statements of the block. Setting it to the same
  324.     value as rexx-indent places the \"end\" under the do-line.
  325.  rexx-cont-indent
  326.     The indention for lines following \"then\", \"else\" and \",\"
  327.     (continued) lines.
  328.  rexx-tab-always-indent
  329.     Non-nil means TAB in REXX mode should always reindent the current 
  330.     line, regardless of where in the line the point is when the TAB
  331.     command is used.
  332.  
  333. If you have set rexx-end-indent to a nonzero value, you probably want to
  334. remap RETURN to rexx-indent-newline-indent. It makes sure that lines
  335. indents correctly when you press RETURN.
  336.  
  337. An extensive abbrevation table consisting of all the keywords of REXX are
  338. supplied. Expanded keywords are converted into upper case making it
  339. easier to distinguish them. To use this feature the buffer must be in
  340. abbrev-mode. (See example below.)
  341.  
  342. Turning on REXX mode calls the value of the variable rexx-mode-hook with
  343. no args, if that value is non-nil.
  344.  
  345. For example:
  346. (setq rexx-mode-hook '(lambda ()
  347.             (setq rexx-indent 4)
  348.             (setq rexx-end-indent 4)
  349.             (setq rexx-cont-indent 4)
  350.             (local-set-key \"\\C-m\" 'rexx-indent-newline-indent)
  351.             (abbrev-mode 1)
  352.             ))
  353.  
  354. will make the END aligned with the DO/SELECT. It will indent blocks and
  355. IF-statenents four steps and make sure that the END jumps into the
  356. correct position when RETURN is pressed. Finaly it will use the abbrev
  357. table to convert all REXX keywords into upper case."
  358.   (interactive)
  359.   (kill-all-local-variables)
  360.   (use-local-map rexx-mode-map)
  361.   (set-syntax-table rexx-mode-syntax-table)
  362.   (setq major-mode 'rexx-mode)
  363.   (setq mode-name "REXX")
  364.   (setq local-abbrev-table rexx-mode-abbrev-table)
  365.   (make-local-variable 'case-fold-search)
  366.   (setq case-fold-search t)
  367.   (make-local-variable 'paragraph-start)
  368.   (setq paragraph-start (concat "^$\\|" page-delimiter))
  369.   (make-local-variable 'paragraph-separate)
  370.   (setq paragraph-separate paragraph-start)
  371.   (make-local-variable 'paragraph-ignore-fill-prefix)
  372.   (setq paragraph-ignore-fill-prefix t)
  373.   (make-local-variable 'indent-line-function)
  374.   (setq indent-line-function 'rexx-indent-command)
  375.   (make-local-variable 'parse-sexp-ignore-comments)
  376.   (setq parse-sexp-ignore-comments t)
  377.   (make-local-variable 'comment-start)
  378.   (setq comment-start "/* ")
  379.   (make-local-variable 'comment-end)
  380.   (setq comment-end " */")
  381.   (make-local-variable 'comment-column)
  382.   (setq comment-column 32)
  383.   (make-local-variable 'comment-start-skip)
  384.   (setq comment-start-skip "/\\*+ *")
  385.   (make-local-variable 'comment-indent-hook)
  386.   (setq comment-indent-hook 'rexx-comment-indent)
  387.   (run-hooks 'rexx-mode-hook))
  388.  
  389.  
  390. (defun rexx-indent-command (&optional whole-exp)
  391.   "Indent the current line as REXX code."
  392.   (interactive "P")
  393.   (if whole-exp
  394.       (let ((shift-amt (rexx-indent-line))
  395.         beg
  396.         end)
  397.     (save-excursion
  398.       (if rexx-tab-always-indent
  399.           (beginning-of-line))
  400.       (setq beg (point))
  401.       (forward-sexp 1)
  402.       (setq end (point))
  403.       (goto-char beg)
  404.       (forward-line 1)
  405.       (setq beg (point)))
  406.     (if (> end beg)
  407.         (indent-code-rigidly beg end shift-amt)))
  408.     (if (and (not rexx-tab-always-indent)
  409.          (save-execursion
  410.           (skip-char-backwards " \t")
  411.           (not (bolp))))
  412.     (insert-tab)
  413.       (rexx-indent-line))))
  414.  
  415. (defun rexx-indent-line ()
  416.   "Indent the current line as REXX code.
  417. Return the amount the indentation changed by."
  418.   (let ((indent (rexx-calc-indent))
  419.     beg
  420.     shift-amt
  421.         (pos (- (point-max) (point))))
  422.     (beginning-of-line)
  423.     (setq beg (point))
  424.     (cond ((eq indent nil) (setq indent (current-indentation)))
  425.       ((eq indent t) (setq indent (rexx-calculate-indent-within-comment)))
  426.       ((looking-at "[ \t]*#") (setq indent 0))
  427.       (t (skip-chars-forward " \t")
  428.          (if (listp indent) (setq indent (car indent)))
  429.           ;; /* Språkspecifik kod! */
  430.          (if (looking-at "end") (setq indent (- indent rexx-end-indent)))))
  431.     (skip-chars-forward " \t")
  432.     (setq shift-amt (- indent (current-column)))
  433.     (if (zerop shift-amt)
  434.     (if (> (- (point-max) pos) (point))
  435.         (goto-char (- (point-max) pos)))
  436.       (delete-region beg (point))
  437.       (indent-to indent)
  438.       (if (> (- (point-max) pos) (point))
  439.       (goto-char (- (point-max) pos))))
  440.     shift-amt))
  441.  
  442. (defun rexx-calc-indent ()
  443.   "Return the appropriate indentation for this line as an int."
  444.   (save-excursion
  445.     (beginning-of-line)
  446.     (let ((block (rexx-find-environment))
  447.       beg
  448.       state
  449.       indent)
  450.       (save-excursion (setq state (rexx-inside-comment-or-string)))
  451.       (cond ((or (nth 3 state) (nth 4 state))
  452.          (nth 4 state))    ;; Inside a comment or string
  453.         (t    
  454.          ;; Find line to indent current line after.
  455.          (rexx-backup-to-noncomment 1)
  456.          (beginning-of-line)
  457.          (setq beg (rexx-find-environment))
  458.          (while (> beg block)
  459.            (goto-char beg)
  460.            (beginning-of-line)
  461.            (setq beg (rexx-find-environment)))
  462.  
  463.          (if (> (point) block)         
  464.          ;; Check to see if we shall make a special indention
  465.          (if (looking-at rexx-special-regexp)
  466.              (+ (current-indentation) rexx-cont-indent)
  467.            ;; If not, find the basic indention by stepping
  468.            ;; by all special indented lines.
  469.            (progn
  470.              (setq indent (current-indentation))
  471.              (rexx-backup-to-noncomment 1)
  472.              (beginning-of-line)
  473.              (while (looking-at rexx-special-regexp)
  474.                (setq indent (current-indentation))
  475.                (rexx-backup-to-noncomment 1)
  476.                (beginning-of-line))
  477.              indent))
  478.            (if (= 1 block)
  479.            0
  480.          ;; Indent after the do-line.
  481.          (progn
  482.            (goto-char block)
  483.            (+ (current-indentation) rexx-indent)))))))))
  484.  
  485. (defun rexx-backup-to-noncomment (lim)
  486.   "Backup the point to the previous noncomment REXX line."
  487.   (let (stop)
  488.     (while (not stop)
  489.       (skip-chars-backward " \t\n\f" lim)
  490.       (if (and (>= (point) (+ 2 lim))
  491.            (save-excursion
  492.          (forward-char -2)
  493.          (looking-at "\\*/")))
  494.       (search-backward "/*" lim 'move)
  495.     (setq stop t)))
  496.     (>= (point) lim)))
  497.  
  498. (defun rexx-find-environment ()
  499.   "Return the position of the corresponding \"do\" or \"select\".
  500. If none found, return the beginning of buffer."
  501.   (save-excursion
  502.     (let ((do-level 1)
  503.       (cont t)
  504.       state)
  505.       (while (and cont (not (zerop do-level)))
  506.     (setq cont (re-search-backward "\\b\\(do\\|select\\|end\\)\\b" 1 t))
  507.     (save-excursion (setq state (rexx-inside-comment-or-string)))
  508.     (setq do-level (+ do-level
  509.               (cond ((or (nth 3 state) (nth 4 state)) 0)
  510.                 ((looking-at "do") -1)
  511.                 ((looking-at "select") -1)
  512.                 ((looking-at "end") +1)
  513.                 (t 0)))))
  514.  
  515.       (if cont (point) 1))))
  516.  
  517. (defun rexx-calculate-indent-within-comment ()
  518.   "Return the indentation amount for line, assuming that
  519. the current line is to be regarded as part of a block comment."
  520.   (let (end star-start)
  521.     (save-excursion
  522.       (beginning-of-line)
  523.       (skip-chars-forward " \t")
  524.       (setq star-start (= (following-char) ?\*))
  525.       (skip-chars-backward " \t\n")
  526.       (setq end (point))
  527.       (beginning-of-line)
  528.       (skip-chars-forward " \t")
  529.       (and (re-search-forward "/\\*[ \t]*" end t)
  530.        star-start
  531.        (goto-char (1+ (match-beginning 0))))
  532.       (current-column))))
  533.  
  534. (defun rexx-comment-indent ()
  535.   (if (looking-at "^/\\*")
  536.       0                ;Existing comment at bol stays there.
  537.     (save-excursion
  538.       (skip-chars-backward " \t")
  539.       (max (1+ (current-column))    ;Else indent at comment column
  540.        comment-column))))    ; except leave at least one space.
  541.  
  542. (defun rexx-find-matching-do ()
  543.   "Set mark, look for the \"do\" or \"select\" for the present block."
  544.   (interactive)
  545.   (set-mark-command nil)
  546.   (beginning-of-line)
  547.   (goto-char (rexx-find-environment)))
  548.  
  549. (defun rexx-check-expansion ()
  550.   "If abbrev was made within a comment or a string, de-abbrev!"
  551.   (let ((state (rexx-inside-comment-or-string)))
  552.     (if (or (nth 3 state) (nth 4 state))
  553.     (unexpand-abbrev))))
  554.  
  555. (defun rexx-inside-comment-or-string ()
  556.   "Check if the point is inside a comment or a string.
  557. It returns the state from parse-partial-sexp for the search that
  558. terminated on the points position"
  559.   (let ((origpoint (point))
  560.     state)
  561.     (save-excursion 
  562.       (goto-char 1)
  563.       (while (> origpoint (point))
  564.     (setq state (parse-partial-sexp (point) origpoint 0))))
  565.     state))
  566.  
  567. (defun rexx-indent-and-newline ()
  568.   "New newline-and-indent which expands abbrevs before running
  569. a regular newline-and-indent."
  570.   (interactive)
  571.   (if abbrev-mode 
  572.       (expand-abbrev))
  573.   (newline-and-indent))
  574.  
  575. (defun rexx-indent-newline-indent ()
  576.   "New newline-and-indent which expands abbrevs and indent the line
  577. before running a regular newline-and-indent."
  578.   (interactive)
  579.   (rexx-indent-command)
  580.   (if abbrev-mode 
  581.       (expand-abbrev))
  582.   (newline-and-indent))
  583.